--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Commit 41b75737e9eac5f37c802427dea98fb13851bbdf
Parents : 72932ee
Author : Mark Qvist <mark@unsigned.io>
Date : 2026-04-21T10:50:34+02:00
Updated version
Changes
Diff
diff --git a/LXMF/LXMessage.py b/LXMF/LXMessage.py
index 37186b0..f85f3b8 100644
--- a/LXMF/LXMessage.py
+++ b/LXMF/LXMessage.py
@@ -756,13 +756,13 @@ class LXMessage:
content_bytes = unpacked_payload[2]
fields = unpacked_payload[3]
- destination_identity = RNS.Identity.recall(destination_hash)
+ destination_identity = RNS.Identity.recall(destination_hash, _no_use=True)
if destination_identity != None:
destination = RNS.Destination(destination_identity, RNS.Destination.OUT, RNS.Destination.SINGLE, APP_NAME, "delivery")
else:
destination = None
- source_identity = RNS.Identity.recall(source_hash)
+ source_identity = RNS.Identity.recall(source_hash, _no_use=True)
if source_identity != None:
source = RNS.Destination(source_identity, RNS.Destination.OUT, RNS.Destination.SINGLE, APP_NAME, "delivery")
else:
diff --git a/LXMF/_version.py b/LXMF/_version.py
index e94731c..f8c6ac7 100644
--- a/LXMF/_version.py
+++ b/LXMF/_version.py
@@ -1 +1 @@
-__version__ = "0.9.4"
+__version__ = "0.9.5"
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────